home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CUJ9207.ARJ / 1007054C < prev    next >
Text File  |  1992-06-03  |  128b  |  10 lines

  1. istream &operator>>(istream &is, rational &r)
  2.     {
  3.     long n, d;
  4.     if (is >> n >> d)
  5.         r = rational(n, d);
  6.     return is;
  7.     }
  8.  
  9.  
  10.